home *** CD-ROM | disk | FTP | other *** search
- {GREY.ALG - produce 10 level grey scale.}
-
- {Adjust following two constants to your screen size}
- max_vert_pixels = 303; {plot area size for Hercules I/F}
- max_horiz_pixels = 620;
-
- tracenum = off;
- block_size = 3;
- start = 0; step = block_size; dur = max_horiz_pixels;
- ymin = 0; ymax = max_vert_pixels;
- iloop(2,block_size,max_vert_pixels);
- trace = i*10/max_vert_pixels;
- plot(i);
- endi;
-